home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / ttyslot.c,v < prev    next >
Text File  |  1988-07-14  |  2KB  |  69 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.14.14.08.03;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * ttyslot.c --
  26.  *
  27.  *    Source code for the ttyslot library procedure.
  28.  *
  29.  * Copyright 1988 Regents of the University of California
  30.  * Permission to use, copy, modify, and distribute this
  31.  * software and its documentation for any purpose and without
  32.  * fee is hereby granted, provided that the above copyright
  33.  * notice appear in all copies.  The University of California
  34.  * makes no representations about the suitability of this
  35.  * software for any purpose.  It is provided "as is" without
  36.  * express or implied warranty.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. /*
  44.  *----------------------------------------------------------------------
  45.  *
  46.  * ttyslot --
  47.  *
  48.  *    This is a Sprite replacement for the UNIX ttyslot library
  49.  *    procedure, which supposedly returns the number of the entry
  50.  *    the ttys file that corresponds to the process' control
  51.  *    terminal.  Sprite doesn't really have the notion of a control
  52.  *    terminal, so this procedure pretends it couldn't find an entry.
  53.  *
  54.  * Results:
  55.  *    0, as if there was no corresponding slot in the ttys file.
  56.  *
  57.  * Side effects:
  58.  *    None.
  59.  *
  60.  *----------------------------------------------------------------------
  61.  */
  62.  
  63. int
  64. ttyslot()
  65. {
  66.     return 0;        /* Pretend we couldn't find it. */
  67. }
  68. @
  69.